home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E77.CC < prev    next >
C/C++ Source or Header  |  1991-04-22  |  261b  |  21 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_77()
  5. {
  6.   if (empty())
  7.     return;
  8.   if (modrm > 0277)
  9.   {
  10.     //
  11.     emu_bad();
  12.   }
  13.   else
  14.   {
  15.     // fistp m32int
  16.     r_mov(st(), (long long *)get_modrm());
  17.     st().tag = TW_E;
  18.     top++;
  19.   }
  20. }
  21.